home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / program / kh_gdi.zip / GENERAL / SIMPLE.H < prev    next >
C/C++ Source or Header  |  1994-10-21  |  308b  |  17 lines

  1. #ifndef __SIMPLE_H_
  2. #define __SIMPLE_H_
  3.  
  4. //  File contains some simplifications.
  5.  
  6. typedef unsigned char uchar;
  7. typedef unsigned int uint;
  8. typedef unsigned long ulong;
  9. typedef int bool;
  10. typedef int BOOL;
  11.  
  12. #define TRUE  1
  13. #define FALSE 0
  14. #define ON   TRUE
  15. #define OFF  FALSE
  16.  
  17. #endif __SIMPLE_H_